home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 1 / PC World Interactive 1 - Nisan 1997.iso / prog / masa / 2 / optdlg.h < prev    next >
C/C++ Source or Header  |  1996-08-30  |  1KB  |  47 lines

  1. #ifndef OPTDLG_H
  2. #define OPTDLG_H
  3. // OptDlg.h : header file
  4. //
  5.  
  6. /////////////////////////////////////////////////////////////////////////////
  7. // OptDlg dialog
  8.  
  9. class OptDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13.     OptDlg(CWnd* pParent = NULL);   // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(OptDlg)
  17.     enum { IDD = IDD_OPTIONS };
  18.         // NOTE: the ClassWizard will add data members here
  19.     //}}AFX_DATA
  20.  
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(OptDlg)
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. protected:
  29.     // Generated message map functions
  30.     //{{AFX_MSG(OptDlg)
  31.     afx_msg void OnTestWav();
  32.     afx_msg void OnFind();
  33.     virtual void OnOK();
  34.     virtual BOOL OnInitDialog();
  35.     afx_msg void OnAutohide();
  36.     afx_msg void OnBottom();
  37.     afx_msg void OnChime();
  38.     afx_msg void OnDate();
  39.     afx_msg void OnMemory();
  40.     afx_msg void OnStayontop();
  41.     afx_msg void OnTime();
  42.     afx_msg void OnUser();
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. #endif